home *** CD-ROM | disk | FTP | other *** search
- -- background: 2661 from stack: in
- -- bmap block id: 3313
- -- flags: 0000
- -- background id: 0
- -- name:
-
-
- -- part 4 (button)
- -- low flags: 00
- -- high flags: A003
- -- rect: left=221 top=156 right=205 bottom=286
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name: PICK
- ----- HyperTalk script -----
- on mouseUp
- flash 1
- play ThePick
- put " " into card field 4
- put " " into card field 2
- put " " into card field 6
- put " " into card field 1
- put " " into card field 5
- put " " into card field 3
-
- put random of 39 into num1
-
- put random of 39 into num2
- repeat until num1 <> num2
- put random of 39 into num2
- end repeat
-
- put random of 39 into num3
- repeat until num2 <> num3 and num1 <> num3
- put random of 39 into num3
- end repeat
-
- put random of 39 into num4
- repeat until num1 <> num4 and num2 <> num4 and num3 <> num4
- put random of 39 into num4
- end repeat
-
- put random of 39 into num5
- repeat until num1 <> num5 and num2 <> num5 and num3 <> num5 and num4 <> num5
- put random of 39 into num5
- end repeat
-
- put random of 39 into num6
- repeat until num1 <> num6 and num2 <> num6 and num3 <> num6 and num4 <> num6 and num5 <> num6
- put random of 39 into num6
- end repeat
-
- put num1 into card field 1
- put num2 into card field 2
- put num3 into card field 3
- put num4 into card field 4
- put num5 into card field 5
- put num6 into card field 6
- end mouseUp
-
-